home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / Includes_and_Autodocs_3.5 / include / clib / asl_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-10-28  |  1.1 KB  |  46 lines

  1. #ifndef  CLIB_ASL_PROTOS_H
  2. #define  CLIB_ASL_PROTOS_H
  3.  
  4. /*
  5. **    $VER: asl_protos.h 38.3 (19.3.1992)
  6. **
  7. **    C prototypes. For use with 32 bit integers only.
  8. **
  9. **    Copyright © 1999 Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12.  
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif /* __cplusplus */
  16.  
  17. #ifndef  EXEC_TYPES_H
  18. #include <exec/types.h>
  19. #endif
  20. #ifndef  UTILITY_TAGITEM_H
  21. #include <utility/tagitem.h>
  22. #endif
  23. #ifndef  LIBRARIES_ASL_H
  24. #include <libraries/asl.h>
  25. #endif
  26. /*--- functions in V36 or higher (Release 2.0) ---*/
  27.  
  28. /* OBSOLETE -- Please use the generic requester functions instead */
  29.  
  30. struct FileRequester *AllocFileRequest( VOID );
  31. VOID FreeFileRequest( struct FileRequester *fileReq );
  32. BOOL RequestFile( struct FileRequester *fileReq );
  33. APTR AllocAslRequest( ULONG reqType, struct TagItem *tagList );
  34. APTR AllocAslRequestTags( ULONG reqType, Tag tag1, ... );
  35. VOID FreeAslRequest( APTR requester );
  36. BOOL AslRequest( APTR requester, struct TagItem *tagList );
  37. BOOL AslRequestTags( APTR requester, Tag tag1, ... );
  38. VOID AbortAslRequest( APTR requester );
  39. VOID ActivateAslRequest( APTR requester );
  40.  
  41. #ifdef __cplusplus
  42. }
  43. #endif /* __cplusplus */
  44.  
  45. #endif   /* CLIB_ASL_PROTOS_H */
  46.